home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / sed / sed113.zoo / Makefile.in < prev    next >
Makefile  |  1992-05-31  |  2KB  |  96 lines

  1. # Makefile for GNU SED, a batch editor.
  2. # Copyright (C) 1987, 1991 Free Software Foundation, Inc.
  3. # This file is part of GNU SED.
  4. # GNU SED is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. # GNU SED is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with GNU SED; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  15.  
  16. SHELL = /bin/sh
  17.  
  18. #### Start of system configuration section. ####
  19.  
  20. srcdir = @srcdir@
  21. VPATH = @srcdir@
  22.  
  23. CC = @CC@
  24. INSTALL = @INSTALL@
  25. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  26.  
  27. # Things you might add to DEFS:
  28. # -DSTDC_HEADERS    If you have ANSI C headers and libraries.
  29. # -DUSG            If you have System V/ANSI C string
  30. #            and memory functions and headers.
  31. # -D__CHAR_UNSIGNED__    If type `char' is unsigned.
  32. #            gcc defines this automatically.
  33. # -DNO_VFPRINTF        If you lack vprintf function (but have _doprnt).
  34.  
  35. DEFS = @DEFS@
  36. LIBS = @LIBS@
  37.  
  38. CFLAGS = -g
  39. LDFLAGS = -g
  40.  
  41. prefix = /usr/local
  42. exec_prefix = $(prefix)
  43.  
  44. # Prefix for each installed program, normally empty or `g'.
  45. binprefix = 
  46.  
  47. # Where to install the executable.
  48. bindir = $(exec_prefix)/bin
  49.  
  50. #### End of system configuration section. ####
  51.  
  52. OBJS = sed.o utils.o regex.o getopt.o getopt1.o
  53. SRCS = sed.c utils.c regex.c getopt.c getopt1.c
  54. DISTFILES = COPYING COPYING.LIB ChangeLog README INSTALL Makefile.in \
  55. configure configure.in regex.h getopt.h $(SRCS)
  56.  
  57. all:    sed
  58.  
  59. .c.o:
  60.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I$(srcdir) $<
  61.  
  62. sed:    $(OBJS)
  63.     $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
  64.  
  65. sed.o regex.o: regex.h
  66. sed.o getopt1.o: getopt.h
  67.  
  68. install:    all
  69.     $(INSTALL_PROGRAM) sed $(bindir)/$(binprefix)sed
  70.  
  71. TAGS:    $(SRCS)
  72.     etags $(SRCS)
  73.  
  74. clean:
  75.     rm -f sed *.o core
  76.  
  77. mostlyclean: clean
  78.  
  79. distclean: clean
  80.     rm -f Makefile config.status
  81.  
  82. realclean: distclean
  83.     rm -f TAGS
  84.  
  85. dist:    $(DISTFILES)
  86.     echo sed-`sed -e '/version_string/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q sed.c` > .fname
  87.     rm -rf `cat .fname`
  88.     mkdir `cat .fname`
  89.     ln $(DISTFILES) `cat .fname`
  90.     tar chZf `cat .fname`.tar.Z `cat .fname`
  91.     rm -rf `cat .fname` .fname
  92.